home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 006-devel.lzm / etc / profile.d / pkgconfig.sh < prev   
Encoding:
Linux/UNIX/POSIX Shell Script  |  2007-05-24  |  204 b   |  8 lines

  1. #!/bin/sh
  2. if [ ! "$PKG_CONFIG_PATH" = "" ]; then
  3.   PKG_CONFIG_PATH=${PKG_CONFIG_PATH}:/usr/local/lib/pkgconfig
  4. else
  5.   PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/lib/pkgconfig
  6. fi
  7. export PKG_CONFIG_PATH
  8.